/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

h2.display-4 {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.lead {
    font-size: 1.2rem;
    color: #6c757d;
}

/* Card Styling */
.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 1.25rem;
    color: #34495e;
}

.card-text {
    font-size: 1rem;
    color: #6c757d;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #2c3e50;
}

/* Carousel Styling */
.carousel-inner {
    border-radius: 10px;
    overflow: hidden;
}

.carousel-caption h5 {
    font-size: 1.5rem;
    color: #f8f9fa;
    background: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
    border-radius: 5px;
}

.carousel-caption p {
    font-size: 1.1rem;
    color: #f8f9fa;
    background: rgba(0, 0, 0, 0.6);
    padding: 5px;
    border-radius: 5px;
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #2c3e50;
    border-radius: 50%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .carousel-caption h5 {
        font-size: 1.2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }
}
